CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - udp socket
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - udp socket - List
[
Internet-Network
]
tcpServer
DL : 0
tcp udp socket vc++ c#
Date
: 2025-07-01
Size
: 391kb
User
:
jia
[
Internet-Network
]
socket
DL : 0
用VC编写的socket,用于文件的收发,UDP协议-VC prepared with socket, used to send and receive documents, UDP protocol
Date
: 2025-07-01
Size
: 2.02mb
User
:
张宏
[
Internet-Network
]
TCP_UDP-Socket
DL : 0
TCP和UDP 传输源码,还有 select 模型-TCP_UDP Transfer Examples,and Select
Date
: 2025-07-01
Size
: 3.07mb
User
:
tony chen
[
Internet-Network
]
socket(UDP)
DL : 0
winsock实现网络通信(UDP)异步模式-winsock network communications (UDP) asynchronous mode
Date
: 2025-07-01
Size
: 136kb
User
:
陈相镇
[
Internet-Network
]
Socket
DL : 0
ICP/IP、UDP阻塞模式编程演示,包中含tcp/IP、UDP服务端和客户端源码-ICP/IP, UDP blocking mode programming presentation package with tcp/IP, UDP server and client source code
Date
: 2025-07-01
Size
: 29kb
User
:
张凡
[
Internet-Network
]
CIPv6UDPDev
DL : 0
ipv6 udp socket program
Date
: 2025-07-01
Size
: 52kb
User
:
Young
[
TCP/IP stack
]
UDP_Winsock
DL : 0
a simple UDP socket connection using windows socket library (WS2_32.lib).
Date
: 2025-07-01
Size
: 7.54mb
User
:
ariesooi
[
Linux-Unix
]
socket.tar
DL : 0
socket 分别以tcp,udp两种方式通信的代码。 同一套代码,依靠不同的makefile文件,分别编译出在windows环境、linux环境、Android环境下的执行文件。-socket respectively tcp, udp communication code in two ways. The same set of code, relying on a different makefile files, respectively, lies in the windows environment to compile, linux environment, Android environment execute the file.
Date
: 2025-07-01
Size
: 4kb
User
:
孙涛
[
P2P
]
simpleUDP
DL : 0
sendig messege using UDP socket
Date
: 2025-07-01
Size
: 2kb
User
:
dod
[
CSharp
]
udp
DL : 0
it is about socket programming in client side in windows.
Date
: 2025-07-01
Size
: 36kb
User
:
saeid zamani
[
Windows Develop
]
UdpMfc
DL : 0
use udp socket simple chating program
Date
: 2025-07-01
Size
: 30kb
User
:
bony
[
Internet-Network
]
Socket
DL : 0
网络通信调试助手源码,包括TCPIP,UDP 客户端,服务器端,非常好用,据说价值10wRMB-Assistant source code debugging network communication, including TCPIP, UDP client, server-side, very easy to use, said the value of 10wRMB
Date
: 2025-07-01
Size
: 56kb
User
:
黄
[
Internet-Network
]
UDP
DL : 0
Inside the file is a series of classes for VB. Net to implement a UDP socket using the VB libraries. Net
Date
: 2025-07-01
Size
: 1kb
User
:
Ndv
[
assembly language
]
client-udp-ip
DL : 0
C++ SOCKET UDP/IP IMPLIMENTATION
Date
: 2025-07-01
Size
: 1kb
User
:
zakibsix
[
Internet-Network
]
P2P_UDP_Client
DL : 0
UDP Socket编程实例,适合初学者参考。-UDP Socket Program
Date
: 2025-07-01
Size
: 100kb
User
:
丁吕
[
Internet-Network
]
socket
DL : 0
tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Date
: 2025-07-01
Size
: 2kb
User
:
闛靚
[
VC/MFC
]
UDP
DL : 0
socket测试方式,是服务端的代码,如果有需要的可以联系我-the test of socket,it is very useful
Date
: 2025-07-01
Size
: 2.21mb
User
:
mr zou
[
Internet-Network
]
VC_SocketUdp
DL : 0
简单的 socket编程 UDP通信模式-UDP socket programming simple communication mode
Date
: 2025-07-01
Size
: 11kb
User
:
贺长富
[
Internet-Network
]
CAsyncSocket--UDP
DL : 0
使用CAsyncSocket进行无连接(UDP)通信-UDP SOCKET
Date
: 2025-07-01
Size
: 69kb
User
:
李和
[
android
]
Socket1
DL : 0
Android UDP socket通信 Android UDP socket通信-Android UDP socket communication Android UDP socket communication
Date
: 2025-07-01
Size
: 48kb
User
:
zengyang
«
1
2
3
4
5
6
7
8
9
10
...
50
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.